home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / telnetlib.pyo (.txt) < prev    next >
Python Compiled Bytecode  |  2005-10-18  |  20KB  |  721 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyo (Python 2.4)
  3.  
  4. '''TELNET client class.
  5.  
  6. Based on RFC 854: TELNET Protocol Specification, by J. Postel and
  7. J. Reynolds
  8.  
  9. Example:
  10.  
  11. >>> from telnetlib import Telnet
  12. >>> tn = Telnet(\'www.python.org\', 79)   # connect to finger port
  13. >>> tn.write(\'guido\r
  14. \')
  15. >>> print tn.read_all()
  16. Login       Name               TTY         Idle    When    Where
  17. guido    Guido van Rossum      pts/2        <Dec  2 11:10> snag.cnri.reston..
  18.  
  19. >>>
  20.  
  21. Note that read_all() won\'t read until eof -- it just reads some data
  22. -- but it guarantees to read at least one byte unless EOF is hit.
  23.  
  24. It is possible to pass a Telnet object to select.select() in order to
  25. wait until more data is available.  Note that in this case,
  26. read_eager() may return \'\' even if there was data on the socket,
  27. because the protocol negotiation may have eaten the data.  This is why
  28. EOFError is needed in some cases to distinguish between "no data" and
  29. "connection closed" (since the socket also appears ready for reading
  30. when it is closed).
  31.  
  32. To do:
  33. - option negotiation
  34. - timeout should be intrinsic to the connection object instead of an
  35.   option on one of the read calls only
  36.  
  37. '''
  38. import sys
  39. import socket
  40. import select
  41. __all__ = [
  42.     'Telnet']
  43. DEBUGLEVEL = 0
  44. TELNET_PORT = 23
  45. IAC = chr(255)
  46. DONT = chr(254)
  47. DO = chr(253)
  48. WONT = chr(252)
  49. WILL = chr(251)
  50. theNULL = chr(0)
  51. SE = chr(240)
  52. NOP = chr(241)
  53. DM = chr(242)
  54. BRK = chr(243)
  55. IP = chr(244)
  56. AO = chr(245)
  57. AYT = chr(246)
  58. EC = chr(247)
  59. EL = chr(248)
  60. GA = chr(249)
  61. SB = chr(250)
  62. BINARY = chr(0)
  63. ECHO = chr(1)
  64. RCP = chr(2)
  65. SGA = chr(3)
  66. NAMS = chr(4)
  67. STATUS = chr(5)
  68. TM = chr(6)
  69. RCTE = chr(7)
  70. NAOL = chr(8)
  71. NAOP = chr(9)
  72. NAOCRD = chr(10)
  73. NAOHTS = chr(11)
  74. NAOHTD = chr(12)
  75. NAOFFD = chr(13)
  76. NAOVTS = chr(14)
  77. NAOVTD = chr(15)
  78. NAOLFD = chr(16)
  79. XASCII = chr(17)
  80. LOGOUT = chr(18)
  81. BM = chr(19)
  82. DET = chr(20)
  83. SUPDUP = chr(21)
  84. SUPDUPOUTPUT = chr(22)
  85. SNDLOC = chr(23)
  86. TTYPE = chr(24)
  87. EOR = chr(25)
  88. TUID = chr(26)
  89. OUTMRK = chr(27)
  90. TTYLOC = chr(28)
  91. VT3270REGIME = chr(29)
  92. X3PAD = chr(30)
  93. NAWS = chr(31)
  94. TSPEED = chr(32)
  95. LFLOW = chr(33)
  96. LINEMODE = chr(34)
  97. XDISPLOC = chr(35)
  98. OLD_ENVIRON = chr(36)
  99. AUTHENTICATION = chr(37)
  100. ENCRYPT = chr(38)
  101. NEW_ENVIRON = chr(39)
  102. TN3270E = chr(40)
  103. XAUTH = chr(41)
  104. CHARSET = chr(42)
  105. RSP = chr(43)
  106. COM_PORT_OPTION = chr(44)
  107. SUPPRESS_LOCAL_ECHO = chr(45)
  108. TLS = chr(46)
  109. KERMIT = chr(47)
  110. SEND_URL = chr(48)
  111. FORWARD_X = chr(49)
  112. PRAGMA_LOGON = chr(138)
  113. SSPI_LOGON = chr(139)
  114. PRAGMA_HEARTBEAT = chr(140)
  115. EXOPL = chr(255)
  116. NOOPT = chr(0)
  117.  
  118. class Telnet:
  119.     """Telnet interface class.
  120.  
  121.     An instance of this class represents a connection to a telnet
  122.     server.  The instance is initially not connected; the open()
  123.     method must be used to establish a connection.  Alternatively, the
  124.     host name and optional port number can be passed to the
  125.     constructor, too.
  126.  
  127.     Don't try to reopen an already connected instance.
  128.  
  129.     This class has many read_*() methods.  Note that some of them
  130.     raise EOFError when the end of the connection is read, because
  131.     they can return an empty string for other reasons.  See the
  132.     individual doc strings.
  133.  
  134.     read_until(expected, [timeout])
  135.         Read until the expected string has been seen, or a timeout is
  136.         hit (default is no timeout); may block.
  137.  
  138.     read_all()
  139.         Read all data until EOF; may block.
  140.  
  141.     read_some()
  142.         Read at least one byte or EOF; may block.
  143.  
  144.     read_very_eager()
  145.         Read all data available already queued or on the socket,
  146.         without blocking.
  147.  
  148.     read_eager()
  149.         Read either data already queued or some data available on the
  150.         socket, without blocking.
  151.  
  152.     read_lazy()
  153.         Read all data in the raw queue (processing it first), without
  154.         doing any socket I/O.
  155.  
  156.     read_very_lazy()
  157.         Reads all data in the cooked queue, without doing any socket
  158.         I/O.
  159.  
  160.     read_sb_data()
  161.         Reads available data between SB ... SE sequence. Don't block.
  162.  
  163.     set_option_negotiation_callback(callback)
  164.         Each time a telnet option is read on the input flow, this callback
  165.         (if set) is called with the following parameters :
  166.         callback(telnet socket, command, option)
  167.             option will be chr(0) when there is no option.
  168.         No other action is done afterwards by telnetlib.
  169.  
  170.     """
  171.     
  172.     def __init__(self, host = None, port = 0):
  173.         '''Constructor.
  174.  
  175.         When called without arguments, create an unconnected instance.
  176.         With a hostname argument, it connects the instance; a port
  177.         number is optional.
  178.  
  179.         '''
  180.         self.debuglevel = DEBUGLEVEL
  181.         self.host = host
  182.         self.port = port
  183.         self.sock = None
  184.         self.rawq = ''
  185.         self.irawq = 0
  186.         self.cookedq = ''
  187.         self.eof = 0
  188.         self.iacseq = ''
  189.         self.sb = 0
  190.         self.sbdataq = ''
  191.         self.option_callback = None
  192.         if host is not None:
  193.             self.open(host, port)
  194.         
  195.  
  196.     
  197.     def open(self, host, port = 0):
  198.         """Connect to a host.
  199.  
  200.         The optional second argument is the port number, which
  201.         defaults to the standard telnet port (23).
  202.  
  203.         Don't try to reopen an already connected instance.
  204.  
  205.         """
  206.         self.eof = 0
  207.         if not port:
  208.             port = TELNET_PORT
  209.         
  210.         self.host = host
  211.         self.port = port
  212.         msg = 'getaddrinfo returns an empty list'
  213.         for res in socket.getaddrinfo(host, port, 0, socket.SOCK_STREAM):
  214.             (af, socktype, proto, canonname, sa) = res
  215.             
  216.             try:
  217.                 self.sock = socket.socket(af, socktype, proto)
  218.                 self.sock.connect(sa)
  219.             except socket.error:
  220.                 msg = None
  221.                 if self.sock:
  222.                     self.sock.close()
  223.                 
  224.                 self.sock = None
  225.                 continue
  226.  
  227.             break
  228.         
  229.         if not self.sock:
  230.             raise socket.error, msg
  231.         
  232.  
  233.     
  234.     def __del__(self):
  235.         '''Destructor -- close the connection.'''
  236.         self.close()
  237.  
  238.     
  239.     def msg(self, msg, *args):
  240.         '''Print a debug message, when the debug level is > 0.
  241.  
  242.         If extra arguments are present, they are substituted in the
  243.         message using the standard string formatting operator.
  244.  
  245.         '''
  246.         if self.debuglevel > 0:
  247.             print 'Telnet(%s,%d):' % (self.host, self.port),
  248.             if args:
  249.                 print msg % args
  250.             else:
  251.                 print msg
  252.         
  253.  
  254.     
  255.     def set_debuglevel(self, debuglevel):
  256.         '''Set the debug level.
  257.  
  258.         The higher it is, the more debug output you get (on sys.stdout).
  259.  
  260.         '''
  261.         self.debuglevel = debuglevel
  262.  
  263.     
  264.     def close(self):
  265.         '''Close the connection.'''
  266.         if self.sock:
  267.             self.sock.close()
  268.         
  269.         self.sock = 0
  270.         self.eof = 1
  271.         self.iacseq = ''
  272.         self.sb = 0
  273.  
  274.     
  275.     def get_socket(self):
  276.         '''Return the socket object used internally.'''
  277.         return self.sock
  278.  
  279.     
  280.     def fileno(self):
  281.         '''Return the fileno() of the socket object used internally.'''
  282.         return self.sock.fileno()
  283.  
  284.     
  285.     def write(self, buffer):
  286.         '''Write a string to the socket, doubling any IAC characters.
  287.  
  288.         Can block if the connection is blocked.  May raise
  289.         socket.error if the connection is closed.
  290.  
  291.         '''
  292.         if IAC in buffer:
  293.             buffer = buffer.replace(IAC, IAC + IAC)
  294.         
  295.         self.msg('send %r', buffer)
  296.         self.sock.sendall(buffer)
  297.  
  298.     
  299.     def read_until(self, match, timeout = None):
  300.         '''Read until a given string is encountered or until timeout.
  301.  
  302.         When no match is found, return whatever is available instead,
  303.         possibly the empty string.  Raise EOFError if the connection
  304.         is closed and no cooked data is available.
  305.  
  306.         '''
  307.         n = len(match)
  308.         self.process_rawq()
  309.         i = self.cookedq.find(match)
  310.         if i >= 0:
  311.             i = i + n
  312.             buf = self.cookedq[:i]
  313.             self.cookedq = self.cookedq[i:]
  314.             return buf
  315.         
  316.         s_reply = ([
  317.             self], [], [])
  318.         s_args = s_reply
  319.         if timeout is not None:
  320.             s_args = s_args + (timeout,)
  321.         
  322.         while not (self.eof) and select.select(*s_args) == s_reply:
  323.             i = max(0, len(self.cookedq) - n)
  324.             self.fill_rawq()
  325.             self.process_rawq()
  326.             i = self.cookedq.find(match, i)
  327.             if i >= 0:
  328.                 i = i + n
  329.                 buf = self.cookedq[:i]
  330.                 self.cookedq = self.cookedq[i:]
  331.                 return buf
  332.                 continue
  333.         return self.read_very_lazy()
  334.  
  335.     
  336.     def read_all(self):
  337.         '''Read all data until EOF; block until connection closed.'''
  338.         self.process_rawq()
  339.         while not self.eof:
  340.             self.fill_rawq()
  341.             self.process_rawq()
  342.         buf = self.cookedq
  343.         self.cookedq = ''
  344.         return buf
  345.  
  346.     
  347.     def read_some(self):
  348.         """Read at least one byte of cooked data unless EOF is hit.
  349.  
  350.         Return '' if EOF is hit.  Block if no data is immediately
  351.         available.
  352.  
  353.         """
  354.         self.process_rawq()
  355.         while not (self.cookedq) and not (self.eof):
  356.             self.fill_rawq()
  357.             self.process_rawq()
  358.         buf = self.cookedq
  359.         self.cookedq = ''
  360.         return buf
  361.  
  362.     
  363.     def read_very_eager(self):
  364.         """Read everything that's possible without blocking in I/O (eager).
  365.  
  366.         Raise EOFError if connection closed and no cooked data
  367.         available.  Return '' if no cooked data available otherwise.
  368.         Don't block unless in the midst of an IAC sequence.
  369.  
  370.         """
  371.         self.process_rawq()
  372.         while not (self.eof) and self.sock_avail():
  373.             self.fill_rawq()
  374.             self.process_rawq()
  375.         return self.read_very_lazy()
  376.  
  377.     
  378.     def read_eager(self):
  379.         """Read readily available data.
  380.  
  381.         Raise EOFError if connection closed and no cooked data
  382.         available.  Return '' if no cooked data available otherwise.
  383.         Don't block unless in the midst of an IAC sequence.
  384.  
  385.         """
  386.         self.process_rawq()
  387.         while not (self.cookedq) and not (self.eof) and self.sock_avail():
  388.             self.fill_rawq()
  389.             self.process_rawq()
  390.         return self.read_very_lazy()
  391.  
  392.     
  393.     def read_lazy(self):
  394.         """Process and return data that's already in the queues (lazy).
  395.  
  396.         Raise EOFError if connection closed and no data available.
  397.         Return '' if no cooked data available otherwise.  Don't block
  398.         unless in the midst of an IAC sequence.
  399.  
  400.         """
  401.         self.process_rawq()
  402.         return self.read_very_lazy()
  403.  
  404.     
  405.     def read_very_lazy(self):
  406.         """Return any data available in the cooked queue (very lazy).
  407.  
  408.         Raise EOFError if connection closed and no data available.
  409.         Return '' if no cooked data available otherwise.  Don't block.
  410.  
  411.         """
  412.         buf = self.cookedq
  413.         self.cookedq = ''
  414.         if not buf and self.eof and not (self.rawq):
  415.             raise EOFError, 'telnet connection closed'
  416.         
  417.         return buf
  418.  
  419.     
  420.     def read_sb_data(self):
  421.         """Return any data available in the SB ... SE queue.
  422.  
  423.         Return '' if no SB ... SE available. Should only be called
  424.         after seeing a SB or SE command. When a new SB command is
  425.         found, old unread SB data will be discarded. Don't block.
  426.  
  427.         """
  428.         buf = self.sbdataq
  429.         self.sbdataq = ''
  430.         return buf
  431.  
  432.     
  433.     def set_option_negotiation_callback(self, callback):
  434.         '''Provide a callback function called after each receipt of a telnet option.'''
  435.         self.option_callback = callback
  436.  
  437.     
  438.     def process_rawq(self):
  439.         """Transfer from raw queue to cooked queue.
  440.  
  441.         Set self.eof when connection is closed.  Don't block unless in
  442.         the midst of an IAC sequence.
  443.  
  444.         """
  445.         buf = [
  446.             '',
  447.             '']
  448.         
  449.         try:
  450.             while self.rawq:
  451.                 c = self.rawq_getchar()
  452.                 if not self.iacseq:
  453.                     if c == theNULL:
  454.                         continue
  455.                     
  456.                     if c == '\x11':
  457.                         continue
  458.                     
  459.                     if c != IAC:
  460.                         buf[self.sb] = buf[self.sb] + c
  461.                         continue
  462.                     else:
  463.                         self.iacseq += c
  464.                 c != IAC
  465.                 if len(self.iacseq) == 1:
  466.                     if c in (DO, DONT, WILL, WONT):
  467.                         self.iacseq += c
  468.                         continue
  469.                     
  470.                     self.iacseq = ''
  471.                     if c == IAC:
  472.                         buf[self.sb] = buf[self.sb] + c
  473.                     elif c == SB:
  474.                         self.sb = 1
  475.                         self.sbdataq = ''
  476.                     elif c == SE:
  477.                         self.sb = 0
  478.                         self.sbdataq = self.sbdataq + buf[1]
  479.                         buf[1] = ''
  480.                     
  481.                     if self.option_callback:
  482.                         self.option_callback(self.sock, c, NOOPT)
  483.                     else:
  484.                         self.msg('IAC %d not recognized' % ord(c))
  485.                 self.option_callback
  486.                 if len(self.iacseq) == 2:
  487.                     cmd = self.iacseq[1]
  488.                     self.iacseq = ''
  489.                     opt = c
  490.                     if cmd in (DO, DONT):
  491.                         if not cmd == DO or 'DO':
  492.                             pass
  493.                         self.msg('IAC %s %d', 'DONT', ord(opt))
  494.                         if self.option_callback:
  495.                             self.option_callback(self.sock, cmd, opt)
  496.                         else:
  497.                             self.sock.sendall(IAC + WONT + opt)
  498.                     elif cmd in (WILL, WONT):
  499.                         if not cmd == WILL or 'WILL':
  500.                             pass
  501.                         self.msg('IAC %s %d', 'WONT', ord(opt))
  502.                         if self.option_callback:
  503.                             self.option_callback(self.sock, cmd, opt)
  504.                         else:
  505.                             self.sock.sendall(IAC + DONT + opt)
  506.                     
  507.                 cmd in (DO, DONT)
  508.         except EOFError:
  509.             self.iacseq = ''
  510.             self.sb = 0
  511.  
  512.         self.cookedq = self.cookedq + buf[0]
  513.         self.sbdataq = self.sbdataq + buf[1]
  514.  
  515.     
  516.     def rawq_getchar(self):
  517.         '''Get next char from raw queue.
  518.  
  519.         Block if no data is immediately available.  Raise EOFError
  520.         when connection is closed.
  521.  
  522.         '''
  523.         if not self.rawq:
  524.             self.fill_rawq()
  525.             if self.eof:
  526.                 raise EOFError
  527.             
  528.         
  529.         c = self.rawq[self.irawq]
  530.         self.irawq = self.irawq + 1
  531.         if self.irawq >= len(self.rawq):
  532.             self.rawq = ''
  533.             self.irawq = 0
  534.         
  535.         return c
  536.  
  537.     
  538.     def fill_rawq(self):
  539.         '''Fill raw queue from exactly one recv() system call.
  540.  
  541.         Block if no data is immediately available.  Set self.eof when
  542.         connection is closed.
  543.  
  544.         '''
  545.         if self.irawq >= len(self.rawq):
  546.             self.rawq = ''
  547.             self.irawq = 0
  548.         
  549.         buf = self.sock.recv(50)
  550.         self.msg('recv %r', buf)
  551.         self.eof = not buf
  552.         self.rawq = self.rawq + buf
  553.  
  554.     
  555.     def sock_avail(self):
  556.         '''Test whether data is available on the socket.'''
  557.         return select.select([
  558.             self], [], [], 0) == ([
  559.             self], [], [])
  560.  
  561.     
  562.     def interact(self):
  563.         '''Interaction function, emulates a very dumb telnet client.'''
  564.         if sys.platform == 'win32':
  565.             self.mt_interact()
  566.             return None
  567.         
  568.         while None:
  569.             (rfd, wfd, xfd) = select.select([
  570.                 self,
  571.                 sys.stdin], [], [])
  572.             if self in rfd:
  573.                 
  574.                 try:
  575.                     text = self.read_eager()
  576.                 except EOFError:
  577.                     print '*** Connection closed by remote host ***'
  578.                     break
  579.  
  580.                 if text:
  581.                     sys.stdout.write(text)
  582.                     sys.stdout.flush()
  583.                 
  584.             
  585.             if sys.stdin in rfd:
  586.                 line = sys.stdin.readline()
  587.                 if not line:
  588.                     break
  589.                 
  590.                 self.write(line)
  591.                 continue
  592.  
  593.     
  594.     def mt_interact(self):
  595.         '''Multithreaded version of interact().'''
  596.         import thread as thread
  597.         thread.start_new_thread(self.listener, ())
  598.         while None:
  599.             line = sys.stdin.readline()
  600.             if not line:
  601.                 break
  602.             
  603.  
  604.     
  605.     def listener(self):
  606.         '''Helper for mt_interact() -- this executes in the other thread.'''
  607.         while None:
  608.             
  609.             try:
  610.                 data = self.read_eager()
  611.             except EOFError:
  612.                 print '*** Connection closed by remote host ***'
  613.                 return None
  614.  
  615.             if data:
  616.                 sys.stdout.write(data)
  617.                 continue
  618.             sys.stdout.flush()
  619.  
  620.     
  621.     def expect(self, list, timeout = None):
  622.         """Read until one from a list of a regular expressions matches.
  623.  
  624.         The first argument is a list of regular expressions, either
  625.         compiled (re.RegexObject instances) or uncompiled (strings).
  626.         The optional second argument is a timeout, in seconds; default
  627.         is no timeout.
  628.  
  629.         Return a tuple of three items: the index in the list of the
  630.         first regular expression that matches; the match object
  631.         returned; and the text read up till and including the match.
  632.  
  633.         If EOF is read and no text was read, raise EOFError.
  634.         Otherwise, when nothing matches, return (-1, None, text) where
  635.         text is the text received so far (may be the empty string if a
  636.         timeout happened).
  637.  
  638.         If a regular expression ends with a greedy match (e.g. '.*')
  639.         or if more than one expression can match the same input, the
  640.         results are undeterministic, and may depend on the I/O timing.
  641.  
  642.         """
  643.         re = None
  644.         list = list[:]
  645.         indices = range(len(list))
  646.         for i in indices:
  647.             if not hasattr(list[i], 'search'):
  648.                 if not re:
  649.                     import re as re
  650.                 
  651.                 list[i] = re.compile(list[i])
  652.                 continue
  653.         
  654.         while None:
  655.             for i in indices:
  656.                 m = list[i].search(self.cookedq)
  657.                 if m:
  658.                     e = m.end()
  659.                     text = self.cookedq[:e]
  660.                     self.cookedq = self.cookedq[e:]
  661.                     return (i, m, text)
  662.                     continue
  663.             
  664.             if self.eof:
  665.                 break
  666.             
  667.             if timeout is not None:
  668.                 (r, w, x) = select.select([
  669.                     self.fileno()], [], [], timeout)
  670.                 if not r:
  671.                     break
  672.                 
  673.             
  674.             self.fill_rawq()
  675.         text = self.read_very_lazy()
  676.         if not text and self.eof:
  677.             raise EOFError
  678.         
  679.         return (-1, None, text)
  680.  
  681.  
  682.  
  683. def test():
  684.     '''Test program for telnetlib.
  685.  
  686.     Usage: python telnetlib.py [-d] ... [host [port]]
  687.  
  688.     Default host is localhost; default port is 23.
  689.  
  690.     '''
  691.     debuglevel = 0
  692.     while sys.argv[1:] and sys.argv[1] == '-d':
  693.         debuglevel = debuglevel + 1
  694.         del sys.argv[1]
  695.     host = 'localhost'
  696.     if sys.argv[1:]:
  697.         host = sys.argv[1]
  698.     
  699.     port = 0
  700.     if sys.argv[2:]:
  701.         portstr = sys.argv[2]
  702.         
  703.         try:
  704.             port = int(portstr)
  705.         except ValueError:
  706.             port = socket.getservbyname(portstr, 'tcp')
  707.         except:
  708.             None<EXCEPTION MATCH>ValueError
  709.         
  710.  
  711.     None<EXCEPTION MATCH>ValueError
  712.     tn = Telnet()
  713.     tn.set_debuglevel(debuglevel)
  714.     tn.open(host, port)
  715.     tn.interact()
  716.     tn.close()
  717.  
  718. if __name__ == '__main__':
  719.     test()
  720.  
  721.